YesNoCancelDialog

@Composable
fun WindowScope.YesNoCancelDialog(title: String, message: String, onResult: (result: AlertDialogResult) -> Unit)

This function displays a message dialog.

Parameters

title

The title of the dialog.

message

The message to be displayed.

Example usage:

MessageDialog(
title = "Information",
message = "This is an information message."
)